home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 3794 / 3794.xpi / chrome / content / sidebar.xul < prev    next >
Extensible Markup Language  |  2009-08-19  |  2KB  |  47 lines

  1. <?xml version="1.0"?>
  2.  
  3. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  4. <?xml-stylesheet href="chrome://facebook/skin/toolbar.css" type="text/css"?>
  5.  
  6. <!DOCTYPE page SYSTEM "chrome://facebook/locale/sidebar.dtd">
  7.  
  8. <page id="facebook-sidebar-page"
  9.       title="&sidebar.title;"
  10.       orient="vertical"
  11.       onload="SidebarLoad()"
  12.       onunload="SidebarUnload()"
  13.       xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  14.  
  15.   <script type="application/x-javascript" src="chrome://browser/content/utilityOverlay.js"/>
  16.   <script type="application/x-javascript" src="chrome://facebook/content/lib.js"/>
  17.   <script type="application/x-javascript" src="chrome://facebook/content/sidebar.js"/>
  18.  
  19.   <stringbundleset id="fbbundles">
  20.     <stringbundle id="facebook-strings" src="chrome://facebook/locale/facebook.properties"/>
  21.   </stringbundleset>
  22.  
  23.   <hbox>
  24.     <textbox id="facebook-search-sidebar"
  25.              oninput="SearchFriends(this.value)"
  26.              flex="1"
  27.              style="display: none;"/>
  28.   </hbox>
  29.   <richlistbox id="SidebarFriendsList" flex="1">
  30.     <richlistitem id="FacebookHint" onclick="this.doCommand()">
  31.       <label id="FacebookHintText"/>
  32.     </richlistitem>
  33.   </richlistbox>
  34.   <hbox>
  35.     <toolbarbutton label="&sidebar.settings.label;" oncommand="OpenSettings();" />
  36.     <spacer flex="1" />
  37.     <toolbarbutton id="fbSidebarSorter" type="menu" selectedsort="last update" persist="selectedsort" >
  38.       <menupopup>
  39.         <menuitem id="fbSortUpdate" label="&sidebar.sortlast.label;" type="radio" oncommand="SortBy('last update');"/>
  40.         <menuitem id="fbSortStatus" label="&sidebar.sortstatus.label;" type="radio" oncommand="SortBy('status');"/>
  41.         <menuitem id="fbSortProfile" label="&sidebar.sortprofile.label;" type="radio" oncommand="SortBy('profile');"/>
  42.         <menuitem id="fbSortName" label="&sidebar.sortname.label;" type="radio" oncommand="SortBy('name');"/>
  43.       </menupopup>
  44.     </toolbarbutton>
  45.   </hbox>
  46. </page>
  47.